# Gunther's solution n = eval(input("Enter the start number: ")) m = n + 7 if -6<n<93: for i in range(n,m,1): print(format(i, "2"), end=' ')